home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
internet
/
irc_i_dodatki
/
funfont2.3
/
bin
/
amirc
/
rexx
/
sendreq.amirx
< prev
Wrap
Text File
|
1981-05-07
|
520b
|
27 lines
/* Filesend for AmIRC
\\ By The Possessed Programmer: Tipop@concentric.net
// Requestor selection added by: Tjomme andy@bjuv.mail.telia.com
\\ USAGE: /rx Send
//
\\ Put this script in PROGDIR:rexx/
// and send any text file through
\\ AmIRC
*/
;Arg filename
Address Command "Requestfile Amirc:fansi/ >T:Option"
Open("Option", "T:Option", "R")
file = READLN("Option")
Close("Option")
If file="" Then Exit
file = Substr(file,2,Length(file)-2)
Open(0,file,"R")
Do until Eof(0)
line=readln(0)
'SAY' line
End
EXIT